From 386f8d1f622e90413d055d8cb417b3650ad2164d Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Tue, 26 Feb 2002 23:56:26 +0000 Subject: [PATCH] Append mnemonics rather than prepending them so that the order is Tue Feb 26 18:47:44 2002 Owen Taylor * gtk/gtkwindow.c (gtk_window_add_mnemonic): Append mnemonics rather than prepending them so that the order is typically forward rather than typically backward. (Partial fix for #52395) --- ChangeLog | 7 +++++++ ChangeLog.pre-2-0 | 7 +++++++ ChangeLog.pre-2-10 | 7 +++++++ ChangeLog.pre-2-2 | 7 +++++++ ChangeLog.pre-2-4 | 7 +++++++ ChangeLog.pre-2-6 | 7 +++++++ ChangeLog.pre-2-8 | 7 +++++++ gtk/gtkwindow.c | 2 +- 8 files changed, 50 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a42c115da8..45b06e5718 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Tue Feb 26 18:47:44 2002 Owen Taylor + + * gtk/gtkwindow.c (gtk_window_add_mnemonic): Append + mnemonics rather than prepending them so that the + order is typically forward rather than typically + backward. (Partial fix for #52395) + Wed Feb 27 00:45:39 2002 Soeren Sandmann * gtk/gtkarrow.c, gtk/gtkmenuitem.c, gtk/gtkrange.c diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index a42c115da8..45b06e5718 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,10 @@ +Tue Feb 26 18:47:44 2002 Owen Taylor + + * gtk/gtkwindow.c (gtk_window_add_mnemonic): Append + mnemonics rather than prepending them so that the + order is typically forward rather than typically + backward. (Partial fix for #52395) + Wed Feb 27 00:45:39 2002 Soeren Sandmann * gtk/gtkarrow.c, gtk/gtkmenuitem.c, gtk/gtkrange.c diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index a42c115da8..45b06e5718 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,10 @@ +Tue Feb 26 18:47:44 2002 Owen Taylor + + * gtk/gtkwindow.c (gtk_window_add_mnemonic): Append + mnemonics rather than prepending them so that the + order is typically forward rather than typically + backward. (Partial fix for #52395) + Wed Feb 27 00:45:39 2002 Soeren Sandmann * gtk/gtkarrow.c, gtk/gtkmenuitem.c, gtk/gtkrange.c diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index a42c115da8..45b06e5718 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,10 @@ +Tue Feb 26 18:47:44 2002 Owen Taylor + + * gtk/gtkwindow.c (gtk_window_add_mnemonic): Append + mnemonics rather than prepending them so that the + order is typically forward rather than typically + backward. (Partial fix for #52395) + Wed Feb 27 00:45:39 2002 Soeren Sandmann * gtk/gtkarrow.c, gtk/gtkmenuitem.c, gtk/gtkrange.c diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index a42c115da8..45b06e5718 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,10 @@ +Tue Feb 26 18:47:44 2002 Owen Taylor + + * gtk/gtkwindow.c (gtk_window_add_mnemonic): Append + mnemonics rather than prepending them so that the + order is typically forward rather than typically + backward. (Partial fix for #52395) + Wed Feb 27 00:45:39 2002 Soeren Sandmann * gtk/gtkarrow.c, gtk/gtkmenuitem.c, gtk/gtkrange.c diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index a42c115da8..45b06e5718 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,10 @@ +Tue Feb 26 18:47:44 2002 Owen Taylor + + * gtk/gtkwindow.c (gtk_window_add_mnemonic): Append + mnemonics rather than prepending them so that the + order is typically forward rather than typically + backward. (Partial fix for #52395) + Wed Feb 27 00:45:39 2002 Soeren Sandmann * gtk/gtkarrow.c, gtk/gtkmenuitem.c, gtk/gtkrange.c diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index a42c115da8..45b06e5718 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,10 @@ +Tue Feb 26 18:47:44 2002 Owen Taylor + + * gtk/gtkwindow.c (gtk_window_add_mnemonic): Append + mnemonics rather than prepending them so that the + order is typically forward rather than typically + backward. (Partial fix for #52395) + Wed Feb 27 00:45:39 2002 Soeren Sandmann * gtk/gtkarrow.c, gtk/gtkmenuitem.c, gtk/gtkrange.c diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c index dbfd9c69f7..ed2ba87c3e 100644 --- a/gtk/gtkwindow.c +++ b/gtk/gtkwindow.c @@ -1136,7 +1136,7 @@ gtk_window_add_mnemonic (GtkWindow *window, if (mnemonic) { g_return_if_fail (g_slist_find (mnemonic->targets, target) == NULL); - mnemonic->targets = g_slist_prepend (mnemonic->targets, target); + mnemonic->targets = g_slist_append (mnemonic->targets, target); } else { -- 2.30.2